projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a4cc6b
)
(memmove): Delete extra parens in the safe_bcopy call.
author
Richard M. Stallman
<rms@gnu.org>
Tue, 20 Jul 1993 05:24:34 +0000
(
05:24
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 20 Jul 1993 05:24:34 +0000
(
05:24
+0000)
src/s/isc3-0.h
patch
|
blob
|
history
diff --git
a/src/s/isc3-0.h
b/src/s/isc3-0.h
index f46994e56ff8a2c44b19d2c3568889f8a15ab518..7e71bed66fa111c99771114c01d389a971c3c018 100644
(file)
--- a/
src/s/isc3-0.h
+++ b/
src/s/isc3-0.h
@@
-26,4
+26,6
@@
/* marko@tekelec.com (Marko Rauhamaa) says that his linker couldn't
find memmove, but that sounds crazy - I thought all SYSV
descendants had that. Let us know if this turns out to be wrong. */
-#define memmove(d, s, n) safe_bcopy ((s), (d), (n))
+/* It is safe to have no parens around the args in the safe_bcopy call,
+ and parens would screw up the prototype decl for memmove. */
+#define memmove(d, s, n) safe_bcopy (s, d, n)